RenderLivingEvent

This event is called when an entity is rendered.

It is split into Pre and Post. The Pre version of this event is cancellable.

Inheritors

Types

Link copied to clipboard
class Post(val renderer: RendererLivingEntity<EntityLivingBase>, val entity: EntityLivingBase, val x: Double, val y: Double, val z: Double, val partialTicks: Float) : RenderLivingEvent

This is called after an entity is rendered.

Link copied to clipboard
class Pre(val renderer: RendererLivingEntity<EntityLivingBase>, val entity: EntityLivingBase, val x: Double, val y: Double, val z: Double, val partialTicks: Float) : RenderLivingEvent

This is called before an entity is rendered.

Properties

Link copied to clipboard
@get:JvmName(name = "isCancelled")
var cancelled: Boolean

This field defines whether the event is cancelled or not. Any mod can cancel and un-cancel an event. What an event does when cancelled is event-specific, and noted in that event's documentation.

Link copied to clipboard
val entity: EntityLivingBase

The entity being rendered.

Link copied to clipboard
Link copied to clipboard
val renderer: RendererLivingEntity<EntityLivingBase>
Link copied to clipboard
val x: Double

The x coordinate where the entity is being rendered this frame.

Link copied to clipboard
val y: Double

The y coordinate where the entity is being rendered this frame.

Link copied to clipboard
val z: Double

The z coordinate where the entity is being rendered this frame.